home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmEdit
- BackColor = &H00000000&
- BorderStyle = 1 'Fixed Single
- Caption = "Edit"
- ClientHeight = 3435
- ClientLeft = 4635
- ClientTop = 2100
- ClientWidth = 1515
- Icon = "frmEdit.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3435
- ScaleWidth = 1515
- Begin VB.CommandButton cmdDone
- Caption = "done"
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 0
- Top = 3000
- Width = 1095
- End
- Begin VB.Label lblFindNext
- BackColor = &H80000012&
- Caption = "Find Next"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 6
- Top = 2520
- Width = 1215
- End
- Begin VB.Label lblFind
- BackColor = &H80000012&
- Caption = "Find"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 5
- Top = 2040
- Width = 1215
- End
- Begin VB.Label lblSelectAll
- BackColor = &H80000012&
- Caption = "Select All"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 4
- Top = 1560
- Width = 1215
- End
- Begin VB.Label lblPaste
- BackColor = &H80000012&
- Caption = "Paste"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 3
- Top = 1080
- Width = 1215
- End
- Begin VB.Label lblCopy
- BackColor = &H80000012&
- Caption = "Copy"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 2
- Top = 600
- Width = 1215
- End
- Begin VB.Label lblCut
- BackColor = &H80000012&
- Caption = "Cut"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 1
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "frmEdit"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDone_Click()
- frmEdit.Hide
- frmHElp.Show
- End Sub
- Private Sub lblCopy_Click()
- frmCopy.Show
- frmEdit.Hide
- End Sub
- Private Sub lblCut_Click()
- frmCut.Show
- frmEdit.Hide
- End Sub
- Private Sub lblFind_Click()
- frmFind.Show
- frmEdit.Hide
- End Sub
- Private Sub lblFindNext_Click()
- frmFind.Show
- frmEdit.Hide
- End Sub
- Private Sub lblPaste_Click()
- frmpaste.Show
- frmEdit.Hide
- End Sub
- Private Sub lblSelectAll_Click()
- frmSelectAll.Show
- frmEdit.Hide
- End Sub
-